Add forkmind plugin — local-first LLM branching & debugging - #285
Add forkmind plugin — local-first LLM branching & debugging#285Medhovarsh wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Pull request overview
Adds the ForkMind plugin to this repository’s Claude Code plugin marketplace, including a skill, slash command, subagent, and plugin manifest wiring for its MCP server.
Changes:
- Added the ForkMind plugin package under
plugins/forkmind/(skill, command, agent, README, plugin manifest). - Registered ForkMind in
.claude-plugin/marketplace.jsonunder Development Engineering.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| plugins/forkmind/skills/forkmind/SKILL.md | Adds the ForkMind skill definition and usage docs (run instructions, core workflows, MCP config). |
| plugins/forkmind/README.md | Provides a short plugin overview and pointers to upstream docs/homepage. |
| plugins/forkmind/commands/forkmind.md | Adds the /forkmind command wrapper guidance mapping arguments to skill usage. |
| plugins/forkmind/agents/forkmind-debugger.md | Adds a forkmind-debugger subagent spec for isolated comparisons/regression checks. |
| plugins/forkmind/.claude-plugin/plugin.json | Defines the plugin manifest and MCP server launch configuration. |
| .claude-plugin/marketplace.json | Registers the new forkmind marketplace entry pointing at ./plugins/forkmind. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Content validation passed, but this PR now conflicts with the updated |
45cd6cb to
c3c1f81
Compare
|
@dudley02 Conflict resolved — branch rebased onto latest
README.md: added the missing Also addressed the Copilot review comments:
The diff against |
Adds ForkMind to the marketplace.
ForkMind treats AI context windows like a Git repo: it captures every LLM call into a local
.forkmind/directory, visualizes the conversation as a DAG, and lets you branch alternative prompts/models from any historical turn. Free & local via Ollama, works with any OpenAI-compatible API, and ships an MCP server so agents can query their own history.What this PR adds
plugins/forkmind/— vendored plugin (.claude-plugin/plugin.json,skills/,commands/,agents/, README).claude-plugin/marketplace.json(category: Development Engineering)The plugin bundles
forkmindskill — debug/compare/branch/regression/forkmindcommandforkmind-debuggeragent — isolated model/prompt comparesnpx … forkmind mcp)Links
Medhovarsh/forkmind